home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xarchie-2.0.9 / appres.h < prev    next >
C/C++ Source or Header  |  1995-06-18  |  972b  |  45 lines

  1. /*
  2.  * appres.h : External defs for files needing the application
  3.  *    resources.
  4.  *
  5.  * George Ferguson, ferguson@cs.rochester.edu, 12 Nov 1991.
  6.  * Version 2.0: 23 Apr 1993.
  7.  */
  8.  
  9. #ifndef APP_RESOURCES_H
  10. #define APP_RESOURCES_H
  11.  
  12. #include "types.h"        /* for SearchType and SortType */
  13.  
  14. typedef struct _AppResources {
  15.     SearchType    searchType;
  16.     SortType    sortType;
  17.     String    archieHost;
  18.     int        numHosts;
  19.     int        maxHits;
  20.     int        offset;
  21.     int        timeout;
  22.     int        retries;
  23.     int        niceLevel;
  24.     String    ftpLocalDir;
  25.     String    ftpType;
  26.     Boolean    ftpPrompt;
  27.     Boolean    ftpTrace;
  28.     Boolean    ftpStrip;
  29.     String    ftpMailAddress;
  30.     int        debugLevel;
  31.     Boolean    fileWriteOnePerLine;
  32.     XFontStruct    *xarchieFont;
  33.     XFontStruct    *xarchieBoldFont;
  34.     String    hostWeights;
  35.     Boolean    autoScroll;
  36.     Boolean    pasteBuffer;
  37.     String    visualType;
  38.     Pixmap    defaultIcon;
  39.     Pixmap    busyIcon;
  40. } AppResources;
  41.  
  42. extern AppResources appResources;
  43.  
  44. #endif /* APP_RESOURCES_H */
  45.